home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_d / mdexp12.zip / SIMPLE.DPR < prev    next >
Text File  |  1996-01-04  |  171b  |  13 lines

  1. program Simple;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'UNIT1.PAS' {DemoForm1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TDemoForm1, DemoForm1);
  11.   Application.Run;
  12. end.
  13.